GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 7d4f9b...4c84dc )
by Cedric
01:01
created

module.exports   A

Complexity

Conditions 1
Paths 0

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 0
nop 2
dl 0
loc 6
rs 9.4285
1
'use strict';
2
3
module.exports = function (file, options) {
4
    console.log('file', file);
0 ignored issues
show
Debugging Code introduced by
console.log looks like debug code. Are you sure you do not want to remove it?
Loading history...
introduced by
Unexpected console statement.
Loading history...
5
    console.log('options', options);
0 ignored issues
show
introduced by
Unexpected console statement.
Loading history...
6
7
    throw new Error('To implement')
8
}
9